home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / tabframe / tooltip.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-09-06  |  1.9 KB  |  48 lines

  1. VERSION 2.00
  2. Begin Form frmToolTip 
  3.    BackColor       =   &H00C0C0C0&
  4.    Caption         =   "About ToolTip"
  5.    ClientHeight    =   3270
  6.    ClientLeft      =   1110
  7.    ClientTop       =   2670
  8.    ClientWidth     =   5055
  9.    Height          =   3675
  10.    Left            =   1050
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   3270
  13.    ScaleWidth      =   5055
  14.    Top             =   2325
  15.    Width           =   5175
  16.    Begin Label Label3 
  17.       BackStyle       =   0  'Transparent
  18.       Caption         =   "The ToolTip control is distributed as shareware and registration details are included in the README.TXT file included with this demonstration."
  19.       Height          =   615
  20.       Left            =   240
  21.       TabIndex        =   2
  22.       Top             =   2520
  23.       Width           =   4575
  24.    End
  25.    Begin Label Label2 
  26.       BackStyle       =   0  'Transparent
  27.       Caption         =   "A full demonstration of the ToolTip control, which includes the help file,  is available in the MSBASIC forum on Compuserve - see file TOOLTIP.ZIP in library 17 (3rd Party Products) or search on keyword TOOLTIP."
  28.       Height          =   975
  29.       Left            =   240
  30.       TabIndex        =   1
  31.       Top             =   1440
  32.       Width           =   4575
  33.    End
  34.    Begin Label Label1 
  35.       BackStyle       =   0  'Transparent
  36.       Caption         =   "The ToolTip control allows you to add MS style tool tips to your Visual Basic applications. It also provides events to track mouse movements, menu selections and focus changes making the implementation of a context sensitive status bar very straightforward.."
  37.       Height          =   1155
  38.       Left            =   240
  39.       TabIndex        =   0
  40.       Top             =   180
  41.       Width           =   4515
  42.    End
  43. Option Explicit
  44. Sub Form_Load ()
  45.     Left = (Screen.Width - Width) / 2
  46.     Top = (Screen.Height - Height) / 2
  47. End Sub
  48.